home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / arrays / module1.bas < prev    next >
BASIC Source File  |  1999-07-08  |  232b  |  13 lines

  1. Attribute VB_Name = "Module1"
  2.  
  3. Public Const maxx = 250
  4. Public Const maxy = 50
  5. Type pix
  6.     r As Integer
  7.     g As Integer
  8.     b As Integer
  9. End Type
  10.  
  11. Public new_flame(maxx, maxy) As pix
  12. Public old_flame(maxx, maxy) As pix
  13.